home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / swingall.jar / javax / swing / text / BadLocationException.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-07-15  |  387 b   |  15 lines

  1. package javax.swing.text;
  2.  
  3. public class BadLocationException extends Exception {
  4.    private int offs;
  5.  
  6.    public BadLocationException(String var1, int var2) {
  7.       super(var1);
  8.       this.offs = var2;
  9.    }
  10.  
  11.    public int offsetRequested() {
  12.       return this.offs;
  13.    }
  14. }
  15.